home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Utilities / PGP / source / pgp50i-b8a / tools / util.c < prev    next >
Encoding:
Text File  |  1998-01-04  |  573 b   |  26 lines

  1. /*
  2.  * util.c -- Miscellaneous shared code/data
  3.  *
  4.  * Copyright (C) 1997 Pretty Good Privacy, Inc.
  5.  *
  6.  * Written by Mark H. Weaver
  7.  *
  8.  * $Id: util.c,v 1.6 1997/07/07 21:26:41 colin Exp $
  9.  */
  10.  
  11. char const hexDigits[] = "0123456789abcdef";
  12. char const radix64Digits[] =
  13. #if 0    /* Standard */
  14.     "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
  15. #else    /* Modified form that avoids hard-to-OCR characters */
  16.     "ABCDEFGHIJKLMN@PQRSTUVWXYZabcdefghijk\\mn&pqrstuvwxyz0123456789+/";
  17. #endif
  18.  
  19. /*
  20.  * Local Variables:
  21.  * tab-width: 4
  22.  * End:
  23.  * vi: ts=4 sw=4
  24.  * vim: si
  25.  */
  26.